home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / strpbrk.0 < prev    next >
Text File  |  1996-09-02  |  1KB  |  27 lines

  1.  
  2. STRPBRK(3)                 UNIX Programmer's Manual                 STRPBRK(3)
  3.  
  4. NNAAMMEE
  5.      ssttrrppbbrrkk - locate multiple characters in string
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _c_h_a_r _*
  11.      ssttrrppbbrrkk(_c_o_n_s_t _c_h_a_r _*_s, _c_o_n_s_t _c_h_a_r _*_c_h_a_r_s_e_t)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The ssttrrppbbrrkk() function locates in the null-terminated string _s the first
  15.      occurrence of any character in the string _c_h_a_r_s_e_t and returns a pointer
  16.      to this character.  If no characters from _c_h_a_r_s_e_t occur anywhere in _s
  17.      ssttrrppbbrrkk() returns NULL.
  18.  
  19. SSEEEE AALLSSOO
  20.      index(3),  memchr(3),  rindex(3),  strchr(3),  strcspn(3),  strrchr(3),
  21.      strsep(3),  strspn(3),  strstr(3),  strtok(3)
  22.  
  23. SSTTAANNDDAARRDDSS
  24.      The ssttrrppbbrrkk() function conforms to ANSI C3.159-1989 (``ANSI C'').
  25.  
  26. BSD Experimental                 June 29, 1991                               1
  27.